GET Hero Lane Distribution
/web/academy/heroes/{hero_identifier}/lane
Retrieve lane distribution information for a specific hero. Supports query parameters for pagination and localization.
Path parameters:
- hero_identifier: Hero identifier as numeric hero ID or hero name. Accepts values like
30,Yi Sun-shin, oryisunshin.
Query parameters:
- size: Number of items per page (minimum: 1).
- index: Page index (starting from 1).
- lang: Language code for localized content (default:
en).
The response includes hero lane distribution data:
- records: Array of hero entries, each containing:
- data:
- hero_id: Unique hero identifier.
- hero:
- data:
- roadsort: Array of lane assignments, each containing:
- _id: Unique record identifier.
- caption: Localized lane caption (e.g., '打野').
- configId: Configuration ID.
- createdAt: Creation timestamp.
- createdUser: Creator username.
- updatedAt: Last update timestamp.
- updatedUser: Last updater username.
- data:
- road_sort_id: Lane ID (e.g., '4').
- road_sort_title: Lane title (e.g., 'Jungle').
- road_sort_icon: Lane icon URL.
- roadsort: Array of lane assignments, each containing:
- data:
- data:
This endpoint is useful for:
- Analyzing hero lane preferences.
- Understanding optimal lane assignments.
- Guiding players in hero positioning strategies.
{
"code": 0,
"message": "OK",
"data": {
"records": [
{
"data": {
"hero": {
"data": {
"roadsort": [
{
"_id": "668541caaa8e7f6ec4703d8a",
"caption": "\u6253\u91ce",
"configId": 144237,
"createdAt": 1720009162509,
"createdUser": "nickjin",
"data": {
"_object": 2732073,
"road_sort_icon": "https://akmweb.youngjoygame.com/web/gms/image/de611167c7310681135f0b4198137bfa.svg",
"road_sort_id": "4",
"road_sort_title": "Jungle"
},
"id": 2732080,
"linkId": [
2732073
],
"sort": 0,
"updatedAt": 1723022951463,
"updatedUser": "nickjin"
},
""
]
}
},
"hero_id": 17
}
}
],
"total": 1
}
}